home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ NoScape Navigator Settings.xpl < prev    next >
Text File  |  1998-08-08  |  1KB  |  40 lines

  1. "FILE"="K/oS X-Setup Plugin 3.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Netscape Navigator"
  5. "NAME"="Navigator Settings"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Enable blinking text"
  8. "DESCRIPTION 1"="If you hate the blinking text that sometimes appears inside Navigator, disable the first option."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  12. "COMMENT 2"="Version 1.1"
  13.  
  14.  
  15. sP="HKCU\Software\Netscape\Netscape Navigator\Settings\"
  16. sV1="Blinking"
  17. Sub Plugin_Initialize 
  18.  if RegPathExists(sP) then
  19.   s=RegReadValue(sP&sv1)
  20.   if UCase(s)="YES" then SetUIElement 1,true
  21.  else
  22.   Disable
  23.  end if
  24. End Sub
  25.  
  26. Sub Plugin_CheckData(ElementIndex)
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  b=GetUIElement(1)
  31.  if b=true then
  32.   Call RegWriteValue(sp&sv1,"Yes",1)
  33.  else
  34.   Call RegWriteValue(sp&sv1,"No",1)
  35.  end if
  36. End Sub
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.